home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Sound_Utils / PreludeAMP / PreludeAMP.readme < prev    next >
Text File  |  1998-06-24  |  7KB  |  199 lines

  1.  
  2. Introduction
  3. ------------
  4. PreludeAMP is an MPEG audio player based on Tomislav Uzelac's
  5. amp decoding engine. PreludeAMP is a standalone ELF binary for
  6. PowerUP.
  7.  
  8. Features
  9. --------
  10.  - FREEWARE!
  11.  - Compiled with SAS/C PowerPC Compiler 7.00
  12.  - Does not need ixemul.library!
  13.  - Does not need the AHI audio system
  14.  
  15. Requirements
  16. ------------
  17.  - A Prelude soundcard (it won't run on anything else)
  18.  - prelude.library v2
  19.  - A PowerUP compatible system
  20.  - ppc.library v45
  21.  - Runelf from the SAS/C package (also included in many PPC applications)
  22.  
  23. Usage
  24. -----
  25. Well, this is version 0.3, so don't expect too much :)
  26. It's only a commandline version and there are no options at all. You can
  27. pass exactly _one_ filename on the command line and that's it. If something
  28. goes wrong it may crash - beware!
  29.  
  30. History
  31. -------
  32. v0.1 - first working version :-)
  33.  
  34. v0.2 - improved error detection and ctrl-c support
  35.  
  36. v0.3 - inlined all functions that should be inlined according to the source
  37.        first public release
  38.  
  39. Legal stuff
  40. -----------
  41. PreludeAMP is copyrighted freeware. It may be distributed freely as long as
  42. no modifications are made to the executable and this document. A nominal
  43. fee may be asked to cover distribution costs.
  44.  
  45. PreludeAMP may not be used for any commercial purposes or included with any
  46. commercial product without the written permission of the author. It may
  47. NOT be stored on ftp servers or websites that also hold commercial software
  48. products or drivers for commercial hardware. The only exception are servers
  49. of the Aminet archive.
  50.  
  51. No responsibilities are taken for damaged speakers, amplifiers, Amigas
  52. or any other components or data involved while using PreludeAMP.
  53.  
  54. Although I've done some beta testing I can't guarantee that PreludeAMP will
  55. not crash! If you find any bugs, let me know.
  56.  
  57.  
  58. Here's the original amp.readme:
  59. -------------------------------
  60. amp MPEG audio decoder readme file (version 0.7.5)
  61. (C) Tomislav Uzelac  1996,1997
  62.  
  63. amp is free software and can be _used_ freely by anyone. If you want to
  64. do anything else with it, be sure to check the Legal section of this
  65. document for legal issues.
  66.  
  67. THERE IS NO WARRANTY FOR THIS PROGRAM. Please check out the Legal section
  68. of this document.
  69.  
  70. 1. Introduction
  71. 2. Installation
  72. 3. Running
  73. 4. Feedback
  74. 5. Contributing
  75. 6. Legal
  76.  
  77.  
  78. 1. Introduction
  79.  
  80. amp (Audio Mpeg Player) is an MPEG audio decoder which I originally started 
  81. putting together as a side project of the MPEG hardware design project at 
  82. FER/Zagreb - just to confirm my knowledge of the standard. It works with
  83. both MPEG1 and MPEG2 audio streams (except for the multichannel extensions
  84. defined in MPEG2), layers 2 and 3. 
  85.  
  86. There is a gui for amp, written in Tcl/Tk by Edouard Lafargue. It is 
  87. available at the amp home site ftp://ftp.rasip.fer.hr
  88.  
  89. Another gui supported is the Sajber Jukebox, written by Joel Lindholm.
  90.  
  91. The following people contributed their time and knowledge to amp:
  92. Karl Anders Oygard, Ilkka Karvinen, Lutz Vieweg, Dan Nelson,
  93. Edouard Lafargue, Andrew Richards, George Colouris,
  94. Dmitry Boldyrev, Andy Lo A Foe, Thomas Sailer, Justin Frankel
  95.  
  96. amp home location is
  97.    ftp://ftp.rasip.fer.hr/pub/mpeg/
  98.  
  99. and the mailing list: send 'HELP' in the body of the message to:
  100.    multimedia@rasip.fer.hr
  101.  
  102. If you want to find out more about MPEG, best places to start are
  103.    http://www.mpeg.org
  104.    http://www.mpeg2.de 
  105.  
  106.  
  107. 2. Installation
  108.  
  109. Installation should be simple enough if amp was ported to your system,
  110. just do a 
  111.  
  112. ./configure
  113. make 
  114.  
  115. You can edit the makefile further to suit your system. If configure fails 
  116. to make a usable Makefile, you'll _have_ to edit it yourself.
  117.  
  118. Linux users should try real-time playing support, as described
  119. in doc/realtime.txt. Some people that might pass on this feature are
  120. those with slower machines (i.e. 486's), or SMP systems (see the
  121. doc/linuxrealtime.txt file). 
  122. Some versions of the linux C library produce an error when compiling
  123. amp with realtime support. A quick fix is to edit /usr/include/sched.h
  124. and replace _P in the offending line with __P.
  125.  
  126. ./configure --enable-realtime
  127. make
  128. chown root.root amp
  129. chmod u+s amp
  130.  
  131. ... this requires /dev/dsp to be both world readable and writeable. If you
  132. have a special group for people allowed to use the sound device (for
  133. instance, a group called sound), you can do a:
  134.  
  135. chmod g+s amp
  136.  
  137. or make your audio card world read/writeable (not recomended)
  138.  
  139. chmod o+rw /dev/dsp*
  140.  
  141. 3. Running:
  142.  
  143. 'amp -h' gives you usage & options. If your computer is on the slower
  144. side, direct playback might not work, but you can decode it
  145. to .wav or raw pcm and play it later.
  146.  
  147.  
  148. 4. Feedback
  149.  
  150. Send in your makefiles, opinions, bugreports, fixes; anything related to this
  151. program. You can also send me unlimited amounts of money, sugar, milk, etc.
  152.  
  153. If you find any mpeg audio files that amp has trouble decoding, please tell
  154. me about this via e-mail <tuzelac@rasip.fer.hr>.
  155.  
  156.  
  157. 5. Contributing
  158.  
  159. Please contribute to amp. If you want to know what is going on in amp 
  160. development, you can join the developers mailing list
  161.  
  162.    mpeg_audio_developers@rasip.fer.hr
  163.  
  164. There are certain debugging facilities that I made in amp, but are disabled
  165. in the current release (they are neither nice nor user-friendly). If anyone
  166. enhances them (they are in dump.c) to the point that they're actually
  167. usable I'll be happy to include the changes in the release. I think this
  168. kind of debug output would be very useful to people studying these audio
  169. algorithms.
  170.  
  171.  
  172. 6. Legal
  173.  
  174. This software can be used freely for any purpose. It can be distributed
  175. freely, as long as it is not sold commercially without permission from
  176. Tomislav Uzelac <tuzelac@rasip.fer.hr>. However, including this software
  177. on CD_ROMs containing other free software is explicitly permitted even 
  178. when a modest distribution fee is charged for the CD, as long as this
  179. software is not a primary selling argument for the CD.
  180.  
  181. Building derived versions of this software is permitted, as long as they
  182. are not sold commercially without permission from Tomislav Uzelac 
  183. <tuzelac@rasip.fer.hr>. Any derived versions must be clearly marked as
  184. such, and must be called by a name other than amp. Any derived versions
  185. must retain this copyright notice.
  186.  
  187. /* This license is itself copied from Tatu Ylonen's ssh package. It does 
  188.  * not mention being copyrighted itself :)
  189.  */
  190.  
  191. THERE IS NO WARRANTY FOR THIS PROGRAM - whatsoever. You use it entirely
  192. at your risk, and neither Tomislav Uzelac, nor FER will be liable for
  193. any damages that might occur to your computer, software, etc. in
  194. consequence of you using this freeware program.
  195.  
  196.  
  197. Tomislav Uzelac
  198. <tuzelac@rasip.fer.hr>
  199.